VML Service Functions
SetMode
sets the VML mode to mode parameter and stores the previous VML mode to oldmode.
GetMode
gets the VML mode.
SetErrStatus
sets the VML error status to err and stores the previous VML error status to olderr.
GetErrStatus
gets the VML error status.
ClearErrStatus
sets the VML error status to VML_STATUS_OK and stores the previous VML error status to olderr.
SetErrorCallBack
sets the additional error handler callback function and gets the old callback function.
GetErrorCallBack
gets the additional error handler callback function.
ClearErrorCallBack
deletes the additional error handler callback function and retrieves the former callback function.
Fortran:
oldmode = vmlsetmode( mode )
C:
oldmode = vmlSetMode( mode );
Fortran:
mod = vmlgetmode()
C:
mod = vmlGetMode( void );
Fortran:
olderr = vmlseterrstatus( err )
C:
olderr = vmlSetErrStatus( err );
Fortran:
err = vmlgeterrstatus( )
C:
err = vmlGetErrStatus( void );
Fortran:
olderr = vmlclearerrstatus( )
C:
olderr = vmlClearErrStatus( void );
Fortran:
oldcallback = vmlseterrorcallback( callback )
C:
oldcallback = vmlSetErrorCallBack( callback );
Fortran:
fun = vmlgeterrorcallback( )
C:
fun = vmlGetErrorCallBack( void );
Fortran:
oldcallback = vmlclearerrorcallback( )
C:
oldcallback = vmlClearErrorCallBack( void );
* Legal Information © 1999, 2002-2004, Intel Corporation